home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Forgotten Realms Archives (Silver Edition)
/
The Forgotten Realms Archives - Silver Edition.iso
/
EOB3
/
INSTALL.BAT
< prev
next >
Wrap
DOS Batch File
|
1997-01-25
|
1KB
|
47 lines
echo off
cls
echo %0
pause
if "%0.bat" == "install.bat" goto fine
echo Please change to the directory that contains the
echo Eye of the Beholder III Program and re-run install.
echo Note: type "install" in all lower-case letters.
goto exit
:fine
if "%1" == "" goto nodrive
if "%2" == "" goto nodrive
echo Installing as %1:\%2
md %1:\%2
xcopy install.bat %1:\%2 /s
if not exist %1:\%2\install.bat goto died
xcopy *.* %1:\%2 >nul /s
if exist xva.drv goto cdone
:nodrive
echo Usage: install X Y
echo where X=letter of your hard disk.
echo where Y=name of the directory
echo Example: install c EOB3
goto exit
:died
echo There was an error creating %1:\%2
echo Eye of the Beholder III was not installed.
goto exit
:wrongo
echo Install must be run from the Eye of the Beholder III Cd only.
goto exit
:cdone
cd %1:\%2
%1:
cls
echo Eye of the Beholder III is now installed.
echo Run SOUND.EXE to configure the game
echo Run EYE.BAT to play Eye of the Beholder III
:exit